<?php
//======================================================================================
// DATAHUB - Logout
//
// Programmer: JKJ
// Date : 2025-05-27
//
// Copyright Reeft A/S (c) - 2025
//======================================================================================
//======================================================================================
// General config
//======================================================================================
include "config/config.php";
include "include/REEFT_date_convert.php";
//======================================================================================
// Get session variables
//======================================================================================
include "include/getsession.php";
//======================================================================================
// It's the end of the world...
//======================================================================================
session_start();
session_destroy();
header("Location: login.php");
exit;
?>